powered by
zmq.ctx.new() zmq.ctx.destroy(ctx)
zmq.ctx.new()
ctx
NULL
zmq.ctx.destroy() returns 0 if successful, otherwise returns -1 and sets errno to either EFAULT or EINTR.
zmq.ctx.destroy()
errno
EFAULT
EINTR
zmq.ctx.destroy() terminates the context for stopping communication.
Programming with Big Data in R Website: http://r-pbd.org/
zmq.socket()
zmq.close()
zmq.bind()
zmq.connect()
library(pbdZMQ, quietly = TRUE) context <- zmq.ctx.new() zmq.ctx.destroy(context)
Run the code above in your browser using DataLab